home *** CD-ROM | disk | FTP | other *** search
- #
- # Zustands-▄berwachungs-Script
- # State Watch Script
- #
- # Garage
- #
- # created: 15-Jun-2000 Bernd
- #
- # (C) COPYRIGHT 2000 RADONLABS GMBH
- #
-
-
- # --------------------------------------------------------
- # G A R A G E N
- # --------------------------------------------------------
- proc garagewatch_normal {} {
-
- # vorerst hier unzerstoerbar. Bleibt so, bis es aufgesammelt
- # (in BackPack) oder gebaut (kein Artefakt mehr) wird
- if {[.getartefactmode] == "false"} {
- .announcestate house
- } elseif {[.iscollected] == "true"} {
- .announcestate backpack
- } elseif {[.getcharges] <= 0} {
- .setremoveable true
- } elseif {[.getcreator] != "null"} {
- .announcestate infactoryslot
- }
- }
-
- proc garagewatch_infactoryslot {} {
-
- # vorerst hier unzerstoerbar. Bleibt so, bis es aufgesammelt
- # (in BackPack) oder gebaut (kein Artefakt mehr) wird
- if {[.getartefactmode] == "false"} {
- .announcestate house
- } elseif {[.iscollected] == "true"} {
- .announcestate backpack
- } elseif {[.getcharges] <= 0} {
- # wird das noch gebraucht????
- .setremoveable true
- } elseif {[.getcreator] == "null"} {
- .announcestate normal
- }
- }
-
- proc garagewatch_house {} {
-
- # kann zerstoert oder wieder zusammengeklappt werden
- if {[.iskilled] == "true"} {
- .announcestate explode
- } elseif {[.getartefactmode] == "true"} {
- .announcestate normal
- } elseif {[.isworking] == "true"} {
- .announcestate working
- } elseif {[.isoutputvehicle] == "true"} {
- .announcestate outputvehicle
- .setoutputvehicle false
- } elseif {[.removebuilding] == "true"} {
- .announcestate remove
- } elseif {[.getsleepmode] == "true"} {
- .announcestate offline
- }
- }
-
- proc garagewatch_offline {} {
-
- # kann zerstoert oder wieder zusammengeklappt werden
- if {[.iskilled] == "true"} {
- .announcestate explode
- } elseif {[.getartefactmode] == "true"} {
- .announcestate normal
- } elseif {[.getsleepmode] == "false"} {
- .announcestate house
- } elseif {[.removebuilding] == "true"} {
- .announcestate remove
- }
- }
-
- proc garagewatch_working {} {
-
- # kann zerstoert oder wieder zusammengeklappt werden
- if {[.iskilled] == "true"} {
- .announcestate explode
- } elseif {[.getartefactmode] == "true"} {
- .announcestate normal
- } elseif {[.isworking] == "false"} {
- .announcestate house
- } elseif {[.isoutputvehicle] == "true"} {
- # denn es kann ja ein artefact gebaut werden
- .announcestate outputvehicle
- .setoutputvehicle false
- } elseif {[.removebuilding] == "true"} {
- .announcestate remove
- } elseif {[.getsleepmode] == "true"} {
- .announcestate offline
- }
- }
-
-
- proc garagewatch_bauphase {} {
-
- # kann zerstoert oder wieder zusammengeklappt werden
- if {[.iskilled] == "true"} {
- .announcestate explode
- } elseif {[.getartefactmode] == "true"} {
- .announcestate normal
- } elseif {[.isstatetimeover] == "true"} {
- .announcestate house
- usersymbolicname playergarage
- }
- }
-
- proc garagewatch_explode {} {
-
- # Uebergang zum Artefakt oder wegnehmen
- if {[.isanimfinished] == "true"} {
- if {[.getcharges] <= 0} {
- .setremoveable true
- } else {
- .announcestate normal
- .removefromisland
- }
- }
- }
-
- proc garagewatch_remove {} {
-
- # Uebergang zum Artefakt oder wegnehmen
- if {[.isanimfinished] == "true"} {
- if {[.getcharges] <= 0} {
- .setremoveable true
- } else {
- .announcestate normal
- .removefromisland
- }
- }
- }
-
- proc garagewatch_backpack {} {
-
- # Moeglich: usgeworfen (Nicht mehr "gesammelt") oder im
- # Menue gezeigt (sichtbar)
- if {[.iscollected] == "false"} {
- .announcestate normal
- } elseif {[.isvisible] == "true"} {
- .announcestate menue
- }
- }
-
- proc garagewatch_menu {} {
-
- if {[.isvisible] == "false"} {
- .announcestate backpack
- } elseif {[.getartefactuse] == "true"} {
- .announcestate build
- } elseif {[.iscollected] == "false"} {
- .announcestate normal
- }
- }
-
- proc garagewatch_build {} {
-
- if {[.iskilled] == "true"} {
- .announcestate explode
- } elseif {[.getartefactmode] == "false"} {
- .announcestate bauphase
- } elseif {[.getartefactuse] == "false"} {
- .announcestate backpack
- }
- }
-
- proc garagewatch_inputvehicle {} {
-
- # Wenn Einhol-Animation fertig ist, Zustand umschalten
- if {[.iskilled] == "true"} {
- .announcestate explode
- } elseif {[.getartefactmode] == "true"} {
- .announcestate normal
- } elseif {[.isanimfinished] == "true"} {
- .announcestate house
- }
- }
-
- proc garagewatch_outputvehicle {} {
-
- # Wenn Ausspuck-Animation fertig, wieder normalen Fabrik-Zustand
- # schalten
- if {[.iskilled] == "true"} {
- .announcestate explode
- } elseif {[.getartefactmode] == "true"} {
- .announcestate normal
- } elseif {[.isanimfinished] == "true"} {
- .announcestate house
- }
- }
-
- proc garagewatch_cinematic {} {
-
- # empty
- }
-
-
-